home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 19.zip / BS1 part 19 / Lattice C disk 4.adf / Compiler_Headers / graphics / regions.h < prev    next >
C/C++ Source or Header  |  1988-10-25  |  492b  |  30 lines

  1. #ifndef GRAPHICS_REGIONS_H
  2. #define GRAPHICS_REGIONS_H
  3. /*
  4. **    $Filename: graphics/regions.h $
  5. **    $Release: 1.3 $
  6. **
  7. **    
  8. **
  9. **    (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef GRAPHICS_GFX_H
  14. #include <graphics/gfx.h>
  15. #endif
  16.  
  17. struct RegionRectangle
  18. {
  19.     struct RegionRectangle *Next,*Prev;
  20.     struct Rectangle bounds;
  21. };
  22.  
  23. struct Region
  24. {
  25.     struct Rectangle bounds;
  26.     struct RegionRectangle *RegionRectangle;
  27. };
  28.  
  29. #endif    /* GRAPHICS_REGIONS_H */
  30.